home *** CD-ROM | disk | FTP | other *** search
/ God is Closer Than You Think / God is Closer.iso / mac / GICTYT.swf / scripts / DefineSprite_246 / frame_1 / DoAction.as
Text File  |  2005-02-10  |  303b  |  15 lines

  1. function blur()
  2. {
  3.    if(blurd1_mc._alpha > 99)
  4.    {
  5.       blurd1_mc.tween("_alpha",0,2,"linear");
  6.       blurd2_mc.tween("_alpha",100,2,"linear");
  7.    }
  8.    else
  9.    {
  10.       blurd1_mc.tween("_alpha",100,2,"linear");
  11.       blurd2_mc.tween("_alpha",0,2,"linear");
  12.    }
  13. }
  14. setInterval(blur,5000);
  15.